home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 5
/
Gold Medal Software - Volume 5 (Gold Medal) (1995).iso
/
menuts
/
e4dv204.arj
/
COMPILE.CL
< prev
next >
Wrap
Text File
|
1994-09-12
|
896b
|
49 lines
; COMPILE Sample Configuration File
; Placeholders:
; $f full filename, with directory, path and extension
; $p pathname part of filename, with trailing \ if one is present
; $d name of directory containing filename, without trailing \
; $x extension of file, with leading .
; $n name part of filename, without extension
; $$ a dollar sign
; The above may be capitalised if you wish the string that they
; represent to be in captials also.
; Borland C/C++
*.c
bcc -v $f
; Turbo Assembler
*.asm
tasm /zi $f
tlink /v $p$n.obj
; If you want to use MASM comment out the above lines and
; use these instead
; Microsoft Assembler
;*.asm
; masm /zi $f;
; link /co $p$n;
; Turbo Pascal
*.pas
tpc $f
; Fitted Software Modula-2
*.mod
m2comp $f
m2link $p
; E4 Macro Library Files
*.mac
e4mc $f
; Procomm ASPECT Language
*.asp
aspcomp $f